home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / SYS / s / Documentize.bed < prev    next >
Text File  |  1996-09-26  |  558b  |  38 lines

  1. /*
  2. ** $VER: Documentize.bed 1.0 (2.1.96)
  3. **
  4. ** Removes the linefeeds within each paragraph
  5. ** Useful for importing documents into wordprocessors or DTP programs
  6. */
  7.  
  8. OPTIONS RESULTS
  9.  
  10. SetDisplayLock ON
  11. SetInputLock ON
  12.  
  13. SetStatusBar 'This may take a while on large files...'
  14.  
  15. GetPrefs LeftMargin
  16. left = RESULT
  17. GetPrefs RightMargin
  18. right = RESULT
  19.  
  20. SetPrefs LeftMargin 0
  21. SetPrefs RightMargin 32000
  22.  
  23. MoveSOF
  24.  
  25. RecordMacro QUIET
  26. FormatParagraph
  27. EndMacro
  28.  
  29. PlayMacro 0
  30.  
  31. SetPrefs LeftMargin left
  32. SetPrefs RightMargin right
  33.  
  34. MoveSOF
  35.  
  36. SetDisplayLock OFF
  37. SetInputLock OFF
  38.